home *** CD-ROM | disk | FTP | other *** search
- // copyright 1993 Michael B. Johnson; some portions copyright 1994, MIT
- // see COPYRIGHT for reuse legalities
- //
-
- #import <appkit/appkit.h>
-
- #import "RIBCommand.h"
-
- @interface RIBTrimCurve:RIBCommand
- {
- RtInt nLoops, *nCurves, *order, *n2;
- RtFloat *knot, *min, *max, *u, *v, *w;
- int orderLength, n2Length, knotLength, minLength, maxLength, uLength, vLength, wLength;
- }
-
- - setNLoops:(RtInt)newNLoops nCurves:(RtInt *)newNCurves
- order:(RtInt *)newOrder len:(int)newOrderLength
- knot:(RtFloat *)newKnot len:(int)newKnotLength
- min:(RtFloat *)newMin len:(int)newMinLength max:(RtFloat *)newMax len:(int)newMaxLength
- n2:(RtInt *)newN2 len:(int)newN2Length
- u:(RtFloat *)newU len:(int)newULength v:(RtFloat *)newV len:(int)newVLength w:(RtFloat *)newW len:(int)newWLength;
-
-
- @end
-
-
-
-
-
-